diff options
Diffstat (limited to 'app/[lng]/evcp/(evcp)/docu-list-rule/page.tsx')
| -rw-r--r-- | app/[lng]/evcp/(evcp)/docu-list-rule/page.tsx | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/app/[lng]/evcp/(evcp)/docu-list-rule/page.tsx b/app/[lng]/evcp/(evcp)/docu-list-rule/page.tsx new file mode 100644 index 00000000..3ebf93b3 --- /dev/null +++ b/app/[lng]/evcp/(evcp)/docu-list-rule/page.tsx @@ -0,0 +1,11 @@ +import { redirect } from "next/navigation" + + +export default async function DocumentNumberingPage({ + params, +}: { + params: { lng: string } +}) { + // Code Group 페이지로 리다이렉트 + redirect(`/${params.lng}/evcp/docu-list-rule/document-class`) +}
\ No newline at end of file |
